* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body,html {
      width: 100%;
      overflow-x: hidden;
      background: #f4f4f4;
    }
    
/*------------------------------------------------Navbar section--------------------------------------*/
.navbar {
  height: 90px;
  width: 100%;
  background: #fff;
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo {
  margin-left: 30px; 
}
.logo img {
  height: 90px; 
  width: auto;
  display: block;
}

/* Nav Links */
.nav-links {

  display: flex;
  align-items: center;
  gap: 50px;
}
.nav-links a {
  color: #050505;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #fb4306e1;
  transition: 0.3s;
}
.nav-links a:hover::after {
  width: 100%;
}

/* Social Icons */
.right-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 40px;
}
.right-icons a {
  color: #050505;
  font-size: 20px;
  transition: 0.3s;
}
.right-icons a:hover {
  color: #fb4306e1;  
  transform: scale(1.2);
}

/* Toggle Button */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-right: 0; /* mobile me center ho jaye */
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .logo img {
    height: 60px;
    margin: 0;
  }

  /* ✅ Hide social icons on mobile */
  .right-icons {
    display: none;
  }
}

/*------------------------------------------------Image section--------------------------------------*/
     .slider {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }

    .slider-content {  
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    background-color: rgba(0, 0, 0, 0.5); /* Black transparent background */
    padding: 30px 40px;
    border-radius: 10px;
   }

    .slider-content h1 {
      font-size: 4rem;
      font-family: Georgia, 'Times New Roman', Times, serif;
    }

    .slider-content p {
      font-size: 1.5rem;
      margin-top: 10px;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2rem;
      color: white;
      padding: 10px 15px;
      cursor: pointer;
      z-index: 2;
    }

    .arrow.left {
      left: 10px;
    }

    .arrow.right {
      right: 10px;
    }

/*---------------------------------------------------Icon Section----------------------------------------*/
   .stats-section {
      background: linear-gradient(to right, #f5fafa, #eceff1);
      padding: 80px 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 60px;
    }

    .stat-box {
      text-align: center;
      width: 250px;
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.7s ease;
    }

    .stat-box.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .stat-number {
      font-size: 48px;
      font-weight: bold;
      color: #333;
    }

    .stat-text {
      margin: 15px 0;
      color: #555;
      font-size: 16px;
      line-height: 1.5;
    }

    .stat-icon i {
      font-size: 60px;
      margin-top: 20px;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .stat-box {
        width: 40%;
      }
    }

    @media (max-width: 600px) {
      .stat-box {
        width: 100%;
      }

      .stat-number {
        font-size: 38px;
      }

      .stat-icon i {
        font-size: 50px;
      }
    }


  /* WhatsApp Floating Button */
  .whatsapp-float {
    position: fixed;
    bottom: 20px;  
    left: 20px;
    z-index: 1000;
  }

  .whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    background: #25D366; 
    padding: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }

  .whatsapp-float img:hover {
    transform: scale(1.1);
  }

  @media (max-width: 600px) {
    .whatsapp-float img {
      width: 40px;
      height: 40px;
      padding: 6px;
    }
  }
/*---------------------------------------------------Hero Section----------------------------------------*/
  .hero-section {
  margin-top: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  flex-wrap: wrap;
  overflow: hidden;
  gap: 30px;
}

.image-side, .text-side {
  flex: 1 1 500px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease;
}

.image-side.slide-left {
  transform: translateX(-100px);
}

.image-side img {
  width: 100%;
  /* max-width: 600px; */
  max-width: 600px;
  height: auto;
  /* height: 500px; */
  object-fit: contain;
  margin-top: -90px;
}

.text-side h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ff6a00;
}

.text-side p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.stats {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.stats div {
  text-align: center;
}

.stats strong {
  font-size: 2rem;
  color: #ff6a00;
}

.stats div:nth-child(2) strong {
  color: #0099aa;
}

.stats div:nth-child(3) strong {
  color: #ff7777;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid #050505;
  color: #050505;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
 background: #f28435;
  color: white;
}

/*---------------------------------------------------Our Client Section----------------------------------------*/
 .clients-section {
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
}

.clients-title {
  color: #ff6a00;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  transform: scale(0.5);
  opacity: 0;
  transition: all 0.8s ease;
}

.clients-title.visible {
  transform: scale(1);
  opacity: 1;
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 80px;
  justify-items: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  box-sizing: border-box;
  padding: 0 10px;
}

.client-logo {
  width: 180px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.6s ease;
}

.client-logo.visible {
  opacity: 1;
  transform: translateY(0);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Responsive styles */
@media (max-width: 900px) {
  .clients-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .clients-logos {
    grid-template-columns: 1fr;
  }

  .clients-title {
    font-size: 2rem;
  }
}


/*---------------------------------------------------Product Section----------------------------------------*/
    .segment-section {
      padding: 60px 20px;
      text-align: center;
      background: #ffffff;
    }

    .segment-heading {
      color: #ff6a00;
      font-size: 2.8rem;
      font-weight: bold;
      margin-bottom: 60px;
      opacity: 0;
      transform: scale(0.6);
      transition: all 0.8s ease;
    }

    .segment-heading.visible {
      opacity: 1;
      transform: scale(1);
    }

    .segment-grid-wrapper {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .segment-box {
      perspective: 1000px;
    }

    .card-inner {
      position: relative;
      width: 100%;
      height: 300px;
      transition: transform 0.8s;
      transform-style: preserve-3d;
    }

    .segment-box:hover .card-inner,
    .segment-box:active .card-inner {
      transform: rotateY(180deg);
    }

    .card-front, .card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    }

    .card-front img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .card-back {
      background-color: #ff6a00;
      color: #fff;
      transform: rotateY(180deg);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      font-size: 1rem;
      line-height: 1.6;
    }

    @media (max-width: 1024px) {
      .segment-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .segment-grid-wrapper {
        grid-template-columns: 1fr;
      }

      .segment-heading {
        font-size: 2rem;
      }

      .card-back {
        font-size: 0.95rem;
      }
    }



/*---------------------------------------------------Infrastructure & Facilities Section----------------------------------------*/
.infra-section {
  padding: 60px 20px;
}

.infra-title {
  color: #ff6a00;
  font-size: 2.5rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 60px;
  transform: scale(0.5);
  opacity: 0;
  transition: all 0.7s ease;
}

.infra-title.visible {
  transform: scale(1);
  opacity: 1;
}

.infra-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 80px;
  flex-wrap: wrap;
  position: relative;
}

.reverse {
  flex-direction: row-reverse;
}

.infra-image {
  flex: 1 1 48%;
  transform: translateX(-100px);
  opacity: 0;
  transition: all 0.8s ease;
  z-index: 1;
}

.reverse .infra-image {
  transform: translateX(100px);
}

.infra-image.visible {
  transform: translateX(0);
  opacity: 1;
}

 .infra-image img {
  width: 85%;            /* width reduced */
  height: 450px;         /* height increased */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 auto;        /* center the image */
}


.infra-text {
  flex: 1 1 48%;
  background: #fff;
  padding: 25px;
  margin-top: -80px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  transform: translateX(100px);
  opacity: 0;
  transition: all 0.8s ease;
}

.reverse .infra-text {
  transform: translateX(-100px);
}

.infra-text.visible {
  transform: translateX(0);
  opacity: 1;
}

.infra-box {
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  padding: 25px;
  border-radius: 15px;
}

.infra-text h3 {
  color: #ff6a00;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.infra-text h3 span {
  float: right;
  font-size: 2rem;
  color: #ff6a00;
  font-weight: bold;
}

.infra-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #050505;
  color:#050505;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}

.read-more:hover {
  background: #f28435;
  color: #ffffff;
}

/* ========== Responsive Media Queries ========== */

@media (max-width: 1024px) {
  .infra-title {
    font-size: 2.4rem;
  }

  .infra-text h3 {
    font-size: 1.6rem;
  }

  .infra-text h3 span {
    font-size: 1.5rem;
  }

  .infra-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .infra-block {
    flex-direction: column;
    gap: 20px;
  }

  .reverse {
    flex-direction: column;
  }

  .infra-image,
  .infra-text {
    flex: 1 1 100%;
    max-width: 100%;
    margin-top: 0;
  }

  .infra-text {
    transform: translateY(50px);
  }

  .reverse .infra-text {
    transform: translateY(50px);
  }

 .infra-image img {
    width: 90%;
    height: 350px;  /* mobile-specific taller height */

  .infra-text h3,
  .infra-text h3 span {
    float: none;
    text-align: center;
  }

  .infra-text h3 span {
    display: block;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .infra-title {
    font-size: 2rem;
  }

  .infra-text {
    padding: 15px;
  }

  .infra-text p {
    font-size: 0.9rem;
  }

  .read-more {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .infra-text h3 {
    font-size: 1.4rem;
  }

  .infra-text h3 span {
    font-size: 1.2rem;
  }

  .infra-image img {
    width: 100%;
    height: 280px;
  }
}
}

/*---------------------------------------------------footer Section----------------------------------------*/   
.footer {
  /* margin-bottom: 20px; */
  background-color: #fbeee0;
  color: #333;
  padding: 60px 5% 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1 1 280px;
  min-width: 250px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}

.footer-col.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ff6a00;
  position: relative;
}

.footer hr {
  width: 50px;
  border: 1.5px solid #ff6a00;
  margin-bottom: 15px;
}

.footer p,
.footer li,
.footer a {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  text-decoration: none;
}

.footer li {
  list-style: none;
  margin-bottom: 6px;
}

.footer .quick-links {
  margin-left: 80px;
}

.footer-bottom {
  margin-top: 40px;
  padding: 15px;
  background-color: #e8d8c0;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    justify-content: center;
    gap: 30px;
  }

  .footer .quick-links {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer hr {
    margin-left: auto;
    margin-right: auto;
  }
}

/*---------------------------------------------------Icons Section----------------------------------------*/  
    .features-section {
      padding: 70px 10px 100px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 35px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .feature-box {
      position: relative;
      background-color: #fff;
      border-radius: 10px;
      padding: 40px 25px;
      min-height: 320px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: all 0.8s ease;
      opacity: 0;
      transform: translateY(60px);
    }

    .feature-box.animate-up {
      opacity: 1;
      transform: translateY(0);
    }

    .feature-box:hover {
      transform: translateY(-6px);
    }

    .feature-box::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.6);
      clip-path: polygon(100% 0, 0 0, 100% 100%);
      z-index: 1;
    }

    .feature-box::after {
      content: attr(data-number);
      position: absolute;
      bottom: 20px;
      right: 25px;
      font-size: 110px;
      color: rgba(0, 0, 0, 0.03);
      font-weight: 900;
      z-index: 0;
    }

    .feature-content {
      position: relative;
      z-index: 2;
    }

    .feature-icon {
      font-size: 55px;
      color: #ff6a00;
      margin-bottom: 20px;
      display: inline-block;
    }

    .feature-content h4 {
      font-size: 20px;
      margin-bottom: 14px;
      color: #111;
    }

    .feature-content p {
      font-size: 16px;
      line-height: 1.7;
      color: #444;
    }

    @media (max-width: 600px) {
      .feature-box {
        padding: 30px 18px;
        min-height: 260px;
      }

      .feature-icon {
        font-size: 45px;
      }

      .feature-box::after {
        font-size: 70px;
      }

      .feature-content h4 {
        font-size: 18px;
      }

      .feature-content p {
        font-size: 14px;
      }
    }


/*---------------------------------------------------Enquiry form Section----------------------------------------*/
    .enquire-btn {
      position: fixed;
      top: 40%;
      right: 0;
      background: #ff6a00;
      color: white;
      padding: 12px 18px;
      cursor: pointer;
      font-weight: bold;
      border-radius: 6px 0 0 6px;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      z-index: 1000;
      transition: 0.3s;
    }

    .enquire-btn:hover {
      background: #ff6a00;
    }

    /* Active state when form open */
    .enquire-btn.active {
      background: #444; 
    }

    /* Form Container */
    .form-container {
      position: fixed;
      top: -100%;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 500px;
      background: white;
      border-radius: 8px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.3);
      transition: top 0.6s ease;
      z-index: 2000;
      overflow: hidden;
    }

    .form-container.active {
      top: 10%;
    }

    /* Header bar with title + close */
    .form-header {
      background: #ff6a00;
      color: white;
      padding: 12px 15px;
      position: relative;
      font-weight: bold;
      font-size: 18px;
      text-align: center; /* Center title */
    }

    .form-header .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      font-weight: bold;
      color: white;
      cursor: pointer;
    }

    .form-header .close-btn:hover {
      color: #222;
    }

    /* Form body */
    .form-body {
      padding: 20px;
      text-align: center;
    }

    .form-body input {
      width: 100%;
      padding: 10px;
      margin: 8px 1%;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 14px;
    }

   /* Submit Button Styling */
    .form-body button {
      background-color: #ff6a00;   /* gold color */
      color: #fff;
      border: none;
      padding: 10px 25px;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
      display: block;
      margin: 20px auto 0 auto;   /* center + top margin */
      transition: background 0.3s ease;
    }

.form-body button:hover {
  background-color: #d35400;  /* darker gold on hover */
}

/* Textarea Styling */
/* .form-body input, */
.form-body textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 1%;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  resize: none; /* resize disable for consistency */
}


    /* Responsive */
    @media (max-width: 600px) {
      .form-body input {
        width: 100%;
        margin: 8px 0;
      }
    }

    /* Overlay */
    .overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      display: none;
      z-index: 1500;
    }

    .overlay.active {
      display: block;
    }

    /* ✅ Success Message */
    .success-message {
      display: none;
      color: #2ecc71;
      font-size: 16px;
      margin-top: 15px;
      text-align: center;
      font-weight: bold;
      animation: fadeIn 0.5s ease-in-out;
    }

    .success-message.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }


/*---------------------------------------------------Phone Icon Section----------------------------------------*/
 .phone-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ff6a00;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 1000;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease-in-out;
}
.phone-float:hover {
  background: #e65c00;
  transform: scale(1.1);
}
